home *** CD-ROM | disk | FTP | other *** search
/ Alles Voor Internet / Tout Pour Internet / alles voor internet.iso / MacInternet™ / Archive-tools / untar and compress Folder / compress / compress.c < prev    next >
C/C++ Source or Header  |  1992-02-23  |  41KB  |  1,578 lines

  1. #include <stdlib.h>
  2. /* 
  3.  * Compress - data compression program 
  4.  */
  5. #define min(a,b)    ((a>b) ? b : a)
  6.  
  7. /*
  8.  * machine variants which require cc -Dmachine:     pdp11, z8000, pcxt
  9.  */
  10.  
  11. /*
  12.  * Set USERMEM to the maximum amount of physical user memory available
  13.  * in bytes.  USERMEM is used to determine the maximum BITS that can be used
  14.  * for compression.
  15.  *
  16.  * SACREDMEM is the amount of physical memory saved for others; compress
  17.  * will hog the rest.
  18.  */
  19. #ifndef SACREDMEM
  20. #define SACREDMEM    0
  21. #endif
  22.  
  23. #ifndef USERMEM
  24. # define USERMEM    450000    /* default user memory */
  25. #endif
  26.  
  27. #ifdef interdata        /* (Perkin-Elmer) */
  28. #define SIGNED_COMPARE_SLOW    /* signed compare is slower than unsigned */
  29. #endif
  30.  
  31. #ifdef pdp11
  32. # define BITS    12    /* max bits/code for 16-bit machine */
  33. # define NO_UCHAR    /* also if "unsigned char" functions as signed char */
  34. # undef USERMEM 
  35. #endif /* pdp11 */    /* don't forget to compile with -i */
  36.  
  37. #ifdef z8000
  38. # define BITS    12
  39. # undef vax        /* weird preprocessor */
  40. # undef USERMEM 
  41. #endif /* z8000 */
  42.  
  43. #ifdef MSDOS        /* Microsoft C 3.0 for MS-DOS */
  44. # undef USERMEM
  45. # ifdef BIG        /* then this is a large data compilation */
  46. #  undef DEBUG        /*  DEBUG makes the executible too big */
  47. #  define BITS     16
  48. #  define XENIX_16
  49. # else            /* this is a small model compilation */
  50. #  define BITS     12
  51. # endif
  52. #else
  53. #undef BIG
  54. #endif /* MSDOS */
  55.  
  56. #ifdef pcxt
  57. # define BITS    12
  58. # undef USERMEM
  59. #endif /* pcxt */
  60.  
  61. #ifdef USERMEM
  62. # if USERMEM >= (433484+SACREDMEM)
  63. #  define PBITS 16
  64. # else
  65. #  if USERMEM >= (229600+SACREDMEM)
  66. #   define PBITS    15
  67. #  else
  68. #   if USERMEM >= (127536+SACREDMEM)
  69. #    define PBITS    14
  70. #   else
  71. #    if USERMEM >= (73464+SACREDMEM)
  72. #     define PBITS    13
  73. #    else
  74. #     define PBITS    12
  75. #    endif
  76. #   endif
  77. #  endif
  78. # endif
  79. # undef USERMEM
  80. #endif /* USERMEM */
  81.  
  82. #ifdef PBITS        /* Preferred BITS for this memory size */
  83. # ifndef BITS
  84. #  define BITS PBITS
  85. # endif /* BITS */
  86. #endif /* PBITS */
  87.  
  88. #if BITS == 16
  89. # define HSIZE    69001        /* 95% occupancy */
  90. #endif
  91. #if BITS == 15
  92. # define HSIZE    35023        /* 94% occupancy */
  93. #endif
  94. #if BITS == 14
  95. # define HSIZE    18013        /* 91% occupancy */
  96. #endif
  97. #if BITS == 13
  98. # define HSIZE    9001        /* 91% occupancy */
  99. #endif
  100. #if BITS <= 12
  101. # define HSIZE    5003        /* 80% occupancy */
  102. #endif
  103.  
  104. #ifdef M_XENIX            /* Stupid compiler can't handle arrays with */
  105. # if BITS == 16            /* more than 65535 bytes - so we fake it */
  106. #  define XENIX_16
  107. # else
  108. #  if BITS > 13            /* Code only handles BITS = 12, 13, or 16 */
  109. #   define BITS 13
  110. #  endif
  111. # endif
  112. #endif
  113.  
  114. /*
  115.  * a code_int must be able to hold 2**BITS values of type int, and also -1
  116.  */
  117. typedef long int    code_int;
  118.  
  119. typedef long int      count_int;
  120.  
  121. typedef    unsigned char    char_type;
  122.  
  123. char_type magic_header[] = { "\037\235" };    /* 1F 9D */
  124.  
  125. /* Defines for third byte of header */
  126. #define BIT_MASK    0x1f
  127. #define BLOCK_MASK    0x80
  128. /* Masks 0x40 and 0x20 are free.  I think 0x20 should mean that there is
  129.    a fourth header byte (for expansion).
  130. */
  131. #define INIT_BITS 9            /* initial number of bits/code */
  132.  
  133. /*
  134.  * compress.c - File compression ala IEEE Computer, June 1984.
  135.  *
  136.  * Authors:    Spencer W. Thomas    (decvax!harpo!utah-cs!utah-gr!thomas)
  137.  *        Jim McKie        (decvax!mcvax!jim)
  138.  *        Steve Davies        (decvax!vax135!petsd!peora!srd)
  139.  *        Ken Turkowski        (decvax!decwrl!turtlevax!ken)
  140.  *        James A. Woods        (decvax!ihnp4!ames!jaw)
  141.  *        Joe Orost        (decvax!vax135!petsd!joe)
  142.  *
  143.  * $Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $
  144.  * $Log:    compress.c,v $
  145.  * Revision 4.0.1  87/11/27  21:45:00  rms (Richard Stallman)
  146.  * Once copystat has run, don't delete output file on interrupt.
  147.  * Mention more flags in the Usage string.
  148.  *
  149.  * Revision 4.0     85/07/30  12:50:00  joe
  150.  * Removed ferror() calls in output routine on every output except first.
  151.  * Prepared for release to the world.
  152.  * 
  153.  * Revision 3.6     85/07/04  01:22:21  joe
  154.  * Remove much wasted storage by overlaying hash table with the tables
  155.  * used by decompress: tab_suffix[1<<BITS], stack[8000].  Updated USERMEM
  156.  * computations.  Fixed dump_tab() DEBUG routine.
  157.  *
  158.  * Revision 3.5     85/06/30  20:47:21  jaw
  159.  * Change hash function to use exclusive-or.  Rip out hash cache.  These
  160.  * speedups render the megamemory version defunct, for now.  Make decoder
  161.  * stack global.  Parts of the RCS trunks 2.7, 2.6, and 2.1 no longer apply.
  162.  *
  163.  * Revision 3.4     85/06/27  12:00:00  ken
  164.  * Get rid of all floating-point calculations by doing all compression ratio
  165.  * calculations in fixed point.
  166.  *
  167.  * Revision 3.3     85/06/24  21:53:24  joe
  168.  * Incorporate portability suggestion for M_XENIX.  Got rid of text on #else
  169.  * and #endif lines.  Cleaned up #ifdefs for vax and interdata.
  170.  *
  171.  * Revision 3.2     85/06/06  21:53:24  jaw
  172.  * Incorporate portability suggestions for Z8000, IBM PC/XT from mailing list.
  173.  * Default to "quiet" output (no compression statistics).
  174.  *
  175.  * Revision 3.1     85/05/12  18:56:13  jaw
  176.  * Integrate decompress() stack speedups (from early pointer mods by McKie).
  177.  * Repair multi-file USERMEM gaffe.  Unify 'force' flags to mimic semantics
  178.  * of SVR2 'pack'.  Streamline block-compress table clear logic.  Increase 
  179.  * output byte count by magic number size.
  180.  * 
  181.  * Revision 3.0      84/11/27  11:50:00  petsd!joe
  182.  * Set HSIZE depending on BITS.     Set BITS depending on USERMEM.     Unrolled
  183.  * loops in clear routines.  Added "-C" flag for 2.0 compatibility.  Used
  184.  * unsigned compares on Perkin-Elmer.  Fixed foreground check.
  185.  *
  186.  * Revision 2.7      84/11/16  19:35:39  ames!jaw
  187.  * Cache common hash codes based on input statistics; this improves
  188.  * performance for low-density raster images.  Pass on #ifdef bundle
  189.  * from Turkowski.
  190.  *
  191.  * Revision 2.6      84/11/05  19:18:21  ames!jaw
  192.  * Vary size of hash tables to reduce time for small files.
  193.  * Tune PDP-11 hash function.
  194.  *
  195.  * Revision 2.5      84/10/30  20:15:14  ames!jaw
  196.  * Junk chaining; replace with the simpler (and, on the VAX, faster)
  197.  * double hashing, discussed within.  Make block compression standard.
  198.  *
  199.  * Revision 2.4      84/10/16  11:11:11  ames!jaw
  200.  * Introduce adaptive reset for block compression, to boost the rate
  201.  * another several percent.  (See mailing list notes.)
  202.  *
  203.  * Revision 2.3      84/09/22  22:00:00  petsd!joe
  204.  * Implemented "-B" block compress.  Implemented REVERSE sorting of tab_next.
  205.  * Bug fix for last bits.  Changed fwrite to putchar loop everywhere.
  206.  *
  207.  * Revision 2.2      84/09/18  14:12:21  ames!jaw
  208.  * Fold in news changes, small machine typedef from thomas,
  209.  * #ifdef interdata from joe.
  210.  *
  211.  * Revision 2.1      84/09/10  12:34:56  ames!jaw
  212.  * Configured fast table lookup for 32-bit machines.
  213.  * This cuts user time in half for b <= FBITS, and is useful for news batching
  214.  * from VAX to PDP sites.  Also sped up decompress() [fwrite->putc] and
  215.  * added signal catcher [plus beef in writeerr()] to delete effluvia.
  216.  *
  217.  * Revision 2.0      84/08/28  22:00:00  petsd!joe
  218.  * Add check for foreground before prompting user.  Insert maxbits into
  219.  * compressed file.  Force file being uncompressed to end with ".Z".
  220.  * Added "-c" flag and "zcat".    Prepared for release.
  221.  *
  222.  * Revision 1.10  84/08/24  18:28:00  turtlevax!ken
  223.  * Will only compress regular files (no directories), added a magic number
  224.  * header (plus an undocumented -n flag to handle old files without headers),
  225.  * added -f flag to force overwriting of possibly existing destination file,
  226.  * otherwise the user is prompted for a response.  Will tack on a .Z to a
  227.  * filename if it doesn't have one when decompressing.    Will only replace
  228.  * file if it was compressed.
  229.  *
  230.  * Revision 1.9     84/08/16  17:28:00  turtlevax!ken
  231.  * Removed scanargs(), getopt(), added .Z extension and unlimited number of
  232.  * filenames to compress.  Flags may be clustered (-Ddvb12) or separated
  233.  * (-D -d -v -b 12), or combination thereof.  Modes and other status is
  234.  * copied with copystat().  -O bug for 4.2 seems to have disappeared with
  235.  * 1.8.
  236.  *
  237.  * Revision 1.8     84/08/09  23:15:00  joe
  238.  * Made it compatible with vax version, installed jim's fixes/enhancements
  239.  *
  240.  * Revision 1.6     84/08/01  22:08:00  joe
  241.  * Sped up algorithm significantly by sorting the compress chain.
  242.  *
  243.  * Revision 1.5     84/07/13  13:11:00  srd
  244.  * Added C version of vax asm routines.     Changed structure to arrays to
  245.  * save much memory.  Do unsigned compares where possible (faster on
  246.  * Perkin-Elmer)
  247.  *
  248.  * Revision 1.4     84/07/05  03:11:11  thomas
  249.  * Clean up the code a little and lint it.  (Lint complains about all
  250.  * the regs used in the asm, but I'm not going to "fix" this.)
  251.  *
  252.  * Revision 1.3     84/07/05  02:06:54  thomas
  253.  * Minor fixes.
  254.  *
  255.  * Revision 1.2     84/07/05  00:27:27  thomas
  256.  * Add variable bit length output.
  257.  *
  258.  */
  259. static char rcs_ident[] = "$Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $";
  260.  
  261. #include <stdio.h>
  262. #include <ctype.h>
  263. #include <signal.h>
  264.  
  265. #ifdef MSDOS
  266. #include <stdlib.h>
  267. #endif
  268.  
  269. #define ARGVAL() (*++(*argv) || (--argc && *++argv))
  270.  
  271. int n_bits;                /* number of bits/code */
  272. int maxbits = BITS;            /* user settable max # bits/code */
  273. code_int maxcode;            /* maximum code, given n_bits */
  274. code_int maxmaxcode = (code_int)1 << BITS; /* should NEVER generate this code */
  275. #ifdef COMPATIBLE        /* But wrong! */
  276. # define MAXCODE(n_bits)    ((code_int) 1 << (n_bits) - 1)
  277. #else
  278. # define MAXCODE(n_bits)    (((code_int) 1 << (n_bits)) - 1)
  279. #endif /* COMPATIBLE */
  280.  
  281. count_int *htab;
  282. unsigned short *codetab;
  283. #define htabof(i)    htab[i]
  284. #define codetabof(i)    codetab[i]
  285.  
  286. int    alloctables( void )
  287. {
  288.     htab = (count_int *)malloc( (long)HSIZE * sizeof htab[0] );
  289.     if ( htab == 0 )
  290.         return 0;
  291.     codetab = (unsigned short *)malloc( (long)HSIZE * sizeof codetab[0] );
  292.     if ( codetab == 0 )
  293.         return 0;
  294.     return 1;
  295. }
  296.  
  297. code_int hsize = HSIZE;            /* for dynamic table sizing */
  298. count_int fsize;
  299.  
  300. /*
  301.  * To save much memory, we overlay the table used by compress() with those
  302.  * used by decompress().  The tab_prefix table is the same size and type
  303.  * as the codetab.  The tab_suffix table needs 2**BITS characters.  We
  304.  * get this from the beginning of htab.     The output stack uses the rest
  305.  * of htab, and contains characters.  There is plenty of room for any
  306.  * possible stack (stack used to be 8000 characters).
  307.  */
  308.  
  309. #define tab_prefixof(i) codetabof(i)
  310.  
  311. #ifdef XENIX_16
  312. # ifdef MSDOS
  313. #  define tab_suffixof(i)    ((char_type far *)htab[(i)>>15])[(i) & 0x7fff]
  314. #  define de_stack        ((char_type far *)(htab2))
  315. # else
  316. #  define tab_suffixof(i)    ((char_type *)htab[(i)>>15])[(i) & 0x7fff]
  317. #  define de_stack        ((char_type *)(htab2))
  318. # endif /* MSDOS */
  319. #else    /* Normal machine */
  320. # define tab_suffixof(i)    ((char_type *)(htab))[i]
  321. # define de_stack        ((char_type *)&tab_suffixof((code_int)1<<BITS))
  322. #endif    /* XENIX_16 */
  323.  
  324. code_int free_ent = 0;            /* first unused entry */
  325. int exit_stat = 0;
  326.  
  327. code_int getcode();
  328.  
  329. Usage() {
  330. #ifdef DEBUG
  331.  
  332. # ifdef MSDOS
  333.     fprintf(stderr,"Usage: compress [-cdDfivV] [-b maxbits] [file ...]\n");
  334. # else
  335.     fprintf(stderr,"Usage: compress [-cdDfvV] [-b maxbits] [file ...]\n");
  336. # endif /* MSDOS */
  337.  
  338. }
  339. int debug = 0;
  340. #else
  341.      
  342. # ifdef MSDOS
  343.     fprintf(stderr,"Usage: compress [-cdfivV] [-b maxbits] [file ...]\n");
  344. # else
  345.     fprintf(stderr,"Usage: compress [-cdfvV] [-b maxbits] [file ...]\n");
  346. # endif /* MSDOS */
  347.  
  348. }
  349. #endif /* DEBUG */
  350. int nomagic = 0;    /* Use a 3-byte magic number header, unless old file */
  351. int zcat_flg = 0;    /* Write output on stdout, suppress messages */
  352. int precious = 1;    /* Don't unlink output file on interrupt */
  353. int quiet = 1;        /* don't tell me about compression */
  354.  
  355. /*
  356.  * block compression parameters -- after all codes are used up,
  357.  * and compression rate changes, start over.
  358.  */
  359. int block_compress = BLOCK_MASK;
  360. int clear_flg = 0;
  361. long int ratio = 0;
  362. #define CHECK_GAP 10000 /* ratio check interval */
  363. count_int checkpoint = CHECK_GAP;
  364. /*
  365.  * the next two codes should not be changed lightly, as they must not
  366.  * lie within the contiguous general code space.
  367.  */ 
  368. #define FIRST    257    /* first free entry */
  369. #define CLEAR    256    /* table clear output code */
  370.  
  371. int force = 0;
  372. char ofname [100];
  373.           
  374. #ifdef MSDOS
  375. # define PATH_SEP '\\'
  376. int image = 2;        /* 1 <=> image (binary) mode; 2 <=> text mode */
  377. #else
  378. # define PATH_SEP '/'
  379. #endif
  380.  
  381. #ifdef DEBUG
  382. int verbose = 0;
  383. #endif /* DEBUG */
  384. __sig_func    bgnd_flag;
  385.  
  386. int do_decomp = 0;
  387.  
  388. /*****************************************************************
  389.  * TAG( main )
  390.  *
  391.  * Algorithm from "A Technique for High Performance Data Compression",
  392.  * Terry A. Welch, IEEE Computer Vol 17, No 6 (June 1984), pp 8-19.
  393.  *
  394.  * Usage: compress [-cdfivV] [-b bits] [file ...]
  395.  * Inputs:
  396.  *
  397.  *    -c:        Write output on stdout, don't remove original.
  398.  *
  399.  *    -d:        If given, decompression is done instead.
  400.  *
  401.  *    -f:        Forces output file to be generated, even if one already
  402.  *            exists, and even if no space is saved by compressing.
  403.  *            If -f is not used, the user will be prompted if stdin is
  404.  *            a tty, otherwise, the output file will not be overwritten.
  405.  *
  406.  *    -i:        Image mode (defined only under MS-DOS).  Prevents
  407.  *            conversion between UNIX text representation (LF line
  408.  *            termination) in compressed form and MS-DOS text
  409.  *            representation (CR-LF line termination) in uncompressed
  410.  *            form.  Useful with non-text files.
  411.  *
  412.  *    -v:        Write compression statistics
  413.  *
  414.  *    -V:        Write version and compilation options.
  415.  *
  416.  *    -b:        Parameter limits the max number of bits/code.
  417.  *
  418.  *    file ...:   Files to be compressed.  If none specified, stdin
  419.  *            is used.
  420.  * Outputs:
  421.  *    file.Z:        Compressed form of file with same mode, owner, and utimes
  422.  *    or stdout   (if stdin used as input)
  423.  *
  424.  * Assumptions:
  425.  *    When filenames are given, replaces with the compressed version
  426.  *    (.Z suffix) only if the file decreases in size.
  427.  * Algorithm:
  428.  *    Modified Lempel-Ziv method (LZW).  Basically finds common
  429.  * substrings and replaces them with a variable size code.  This is
  430.  * deterministic, and can be done on the fly.  Thus, the decompression
  431.  * procedure needs no input table, but tracks the way the table was built.
  432.  */
  433.  
  434. #include <console.h>
  435.  
  436. main( argc, argv )
  437. register int argc; char **argv;
  438. {
  439.     int overwrite = 0;    /* Do not overwrite unless given -f flag */
  440.     char tempname[100];
  441.     char **filelist, **fileptr;
  442.     char *cp, *rindex();
  443.     extern onintr();
  444.  
  445. #ifdef MSDOS
  446.     char *sufp;
  447. #else
  448.     extern oops();
  449. #endif
  450.     fprintf( stderr, "compress\n" );
  451.     fprintf( stderr, "BITS=%d\n", BITS );
  452.     
  453.     if ( alloctables() == 0 )
  454.     {
  455.         printf( "Unable to get memory for tables\n" );
  456.         return;
  457.     }
  458.     argc = ccommand(&argv);
  459.     
  460.     stdin->binary = 1;
  461.     stdout->binary = 1;
  462.  
  463. #ifndef MSDOS
  464.     if ( (bgnd_flag = signal ( SIGINT, SIG_IGN )) != SIG_IGN ) {
  465. #endif
  466.  
  467.     signal ( SIGINT, (__sig_func)onintr );
  468.  
  469. #ifndef MSDOS
  470.     signal ( SIGSEGV, (__sig_func)oops );
  471.     }
  472. #endif
  473.  
  474. #ifdef COMPATIBLE
  475.     nomagic = 1;    /* Original didn't have a magic number */
  476. #endif /* COMPATIBLE */
  477.  
  478.     filelist = fileptr = (char **)(malloc(argc * sizeof(*argv)));
  479.     *filelist = NULL;
  480.  
  481.     if((cp = rindex(argv[0], PATH_SEP)) != 0) {
  482.     cp++;
  483.     } else {
  484.     cp = argv[0];
  485.     }
  486.  
  487. #ifdef MSDOS
  488.     if(strcmp(cp, "UNCOMPRE.EXE") == 0) {
  489. #else
  490.     if(strcmp(cp, "uncompress") == 0) {
  491. #endif
  492.  
  493.     do_decomp = 1;
  494.     
  495. #ifdef MSDOS
  496.     } else if(strcmp(cp, "ZCAT.EXE") == 0) {
  497. #else
  498.     } else if(strcmp(cp, "zcat") == 0) {
  499. #endif
  500.  
  501.     do_decomp = 1;
  502.     zcat_flg = 1;
  503.     }
  504.  
  505. #ifdef BSD4_2
  506.     /* 4.2BSD dependent - take it out if not */
  507.     setlinebuf( stderr );
  508. #endif /* BSD4_2 */
  509.  
  510.     /* Argument Processing
  511.      * All flags are optional.
  512.      * -D => debug
  513.      * -V => print Version; debug verbose
  514.      * -d => do_decomp
  515.      * -v => unquiet
  516.      * -f => force overwrite of output file
  517.      * -n => no header: useful to uncompress old files
  518.      * -b maxbits => maxbits.  If -b is specified, then maxbits MUST be
  519.      *        given also.
  520.      * -c => cat all output to stdout
  521.      * -C => generate output compatible with compress 2.0.
  522.      * if a string is left, must be an input filename.
  523.      */
  524.     for (argc--, argv++; argc > 0; argc--, argv++) {
  525.     if (**argv == '-') {    /* A flag argument */
  526.         while (*++(*argv)) {    /* Process all flags in this arg */
  527.         switch (**argv) {
  528. #ifdef DEBUG
  529.             case 'D':
  530.             debug = 1;
  531.             break;
  532.             case 'V':
  533.             verbose = 1;
  534.             version();
  535.             break;
  536. #else
  537.             case 'V':
  538.             version();
  539.             break;
  540. #endif /* DEBUG */
  541.  
  542. #ifdef MSDOS
  543.             case 'i':
  544.             image = 1;
  545.             break;
  546. #endif
  547.  
  548.             case 'v':
  549.             quiet = 0;
  550.             break;
  551.             case 'd':
  552.             do_decomp = 1;
  553.             break;
  554.             case 'f':
  555.             case 'F':
  556.             overwrite = 1;
  557.             force = 1;
  558.             break;
  559.             case 'n':
  560.             nomagic = 1;
  561.             break;
  562.             case 'C':
  563.             block_compress = 0;
  564.             break;
  565.             case 'b':
  566.             if (!ARGVAL()) {
  567.                 fprintf(stderr, "Missing maxbits\n");
  568.                 Usage();
  569.                 exit(1);
  570.             }
  571.             maxbits = atoi(*argv);
  572.             goto nextarg;
  573.             case 'c':
  574.             zcat_flg = 1;
  575.             break;
  576.             case 'q':
  577.             quiet = 1;
  578.             break;
  579.             default:
  580.             fprintf(stderr, "Unknown flag: '%c'; ", **argv);
  581.             Usage();
  582.             exit(1);
  583.         }
  584.         }
  585.     }
  586.     else {        /* Input file name */
  587.         *fileptr++ = *argv; /* Build input file list */
  588.         *fileptr = NULL;
  589.         /* process nextarg; */
  590.     }
  591.     nextarg: continue;
  592.     }
  593.  
  594.     if(maxbits < INIT_BITS) maxbits = INIT_BITS;
  595.     if (maxbits > BITS) maxbits = BITS;
  596.     maxmaxcode = (code_int) 1 << maxbits;
  597.  
  598.     if (*filelist != NULL) {
  599.     for (fileptr = filelist; *fileptr; fileptr++) {
  600.         exit_stat = 0;
  601.         if (do_decomp != 0) {            /* DECOMPRESSION */
  602.  
  603. #ifdef MSDOS
  604.         /* Check for .Z or XZ suffix; add one if necessary */
  605.         cp = *fileptr + strlen(*fileptr) - 2;
  606.         if ((*cp != '.' && *cp != 'X' && *cp != 'x') ||
  607.             (*(++cp) != 'Z' && *cp != 'z')) {
  608.             strcpy(tempname, *fileptr);
  609.             if ((cp=rindex(tempname,'.')) == NULL)
  610.             strcat(tempname, ".Z");
  611.             else if(*(++cp) == '\0') strcat(tempname, "Z");
  612.             else {
  613.             *(++cp) = '\0';
  614.             strcat(tempname, "XZ");
  615.             }
  616.             *fileptr = tempname;
  617.         }
  618. #else
  619.         /* Check for .Z suffix */
  620.         if (strcmp(*fileptr + strlen(*fileptr) - 2, ".Z") != 0) {
  621.             /* No .Z: tack one on */
  622.             strcpy(tempname, *fileptr);
  623.             strcat(tempname, ".Z");
  624.             *fileptr = tempname;
  625.         }
  626. #endif /*MSDOS */
  627.  
  628.         /* Open input file for decompression */
  629.  
  630.         if ((freopen(*fileptr, "rb", stdin)) == NULL) {
  631.  
  632.             perror(*fileptr); continue;
  633.         }
  634.         /* Check the magic number */
  635.         if (nomagic == 0) {
  636.             if ((getchar() != (magic_header[0] & 0xFF))
  637.              || (getchar() != (magic_header[1] & 0xFF))) {
  638.             fprintf(stderr, "%s: not in compressed format\n",
  639.                 *fileptr);
  640.             continue;
  641.             }
  642.             maxbits = getchar();    /* set -b from file */
  643.             block_compress = maxbits & BLOCK_MASK;
  644.             maxbits &= BIT_MASK;
  645.             maxmaxcode = (code_int) 1 << maxbits;
  646.             if(maxbits > BITS) {
  647.             fprintf(stderr,
  648.             "%s: compressed with %d bits, can only handle %d bits\n",
  649.             *fileptr, maxbits, BITS);
  650.             continue;
  651.             }
  652.         }
  653.         /* Generate output filename */
  654.         strcpy(ofname, *fileptr);
  655.         ofname[strlen(*fileptr) - 2] = '\0';  /* Strip off .Z */
  656.         } else {                    /* COMPRESSION */
  657.  
  658. #ifdef MSDOS
  659.         cp = *fileptr + strlen(*fileptr) - 2;
  660.         if ((*cp == '.' || *cp == 'X' || *cp == 'x') &&
  661.             (*(++cp) == 'Z' || *cp == 'z')) {
  662.             fprintf(stderr,"%s: already has %s suffix -- no change\n",
  663.             *fileptr,--cp);
  664. #else
  665.         if (strcmp(*fileptr + strlen(*fileptr) - 2, ".Z") == 0) {
  666.             fprintf(stderr, "%s: already has .Z suffix -- no change\n",
  667.             *fileptr);
  668. #endif /* MSDOS */
  669.  
  670.             continue;
  671.         }
  672.         /* Open input file for compression */
  673.  
  674.         if ((freopen(*fileptr, "rb", stdin)) == NULL) {
  675.  
  676.             perror(*fileptr); continue;
  677.         }
  678.         fsize = 1234567;
  679.         /*
  680.          * tune hash table size for small files -- ad hoc,
  681.          * but the sizes match earlier #defines, which
  682.          * serve as upper bounds on the number of output codes. 
  683.          */
  684.         hsize = HSIZE;
  685.         if ( fsize < (1 << 12) )
  686.             hsize = min ( 5003, HSIZE );
  687.         else if ( fsize < (1 << 13) )
  688.             hsize = min ( 9001, HSIZE );
  689.         else if ( fsize < (1 << 14) )
  690.             hsize = min ( 18013, HSIZE );
  691.         else if ( fsize < (1 << 15) )
  692.             hsize = min ( 35023, HSIZE );
  693.         else if ( fsize < 47000 )
  694.             hsize = min ( 50021, HSIZE );
  695.  
  696.         /* Generate output filename */
  697.         strcpy(ofname, *fileptr);
  698. #ifndef BSD4_2        /* Short filenames */
  699.         if ((cp = rindex(ofname, PATH_SEP)) != NULL) cp++;
  700.         else                    cp = ofname;
  701. # ifdef MSDOS
  702.         if (zcat_flg == 0 && (sufp = rindex(cp, '.')) != NULL &&
  703.             strlen(sufp) > 2) fprintf(stderr,
  704.             "%s: part of filename extension will be replaced by XZ\n",
  705.             cp);
  706. # else
  707.         if (strlen(cp) > 12) {
  708.             fprintf(stderr,"%s: filename too long to tack on .Z\n",cp);
  709.             continue;
  710.         }
  711. # endif
  712. #endif    /* BSD4_2        Long filenames allowed */
  713.                              
  714. #ifdef MSDOS
  715.         if ((cp = rindex(ofname, '.')) == NULL) strcat(ofname, ".Z");
  716.         else {
  717.            if(*(++cp) != '\0') *(++cp) = '\0';
  718.            strcat(ofname, "XZ");
  719.         }
  720. #else
  721.         strcat(ofname, ".Z");
  722. #endif /* MSDOS */
  723.  
  724.         }
  725.         precious = 0;
  726.         /* Check for overwrite of existing file */
  727.         if(zcat_flg == 0) {        /* Open output file */
  728.  
  729.         if (freopen(ofname, "wb", stdout) == NULL) {
  730.  
  731.             perror(ofname); continue;
  732.         }
  733.         if(!quiet)
  734.             fprintf(stderr, "%s: ", *fileptr);
  735.         }
  736.  
  737.         /* Actually do the compression/decompression */
  738.         if (do_decomp == 0) compress();
  739. #ifndef DEBUG
  740.         else            decompress();
  741. #else
  742.         else if (debug == 0)    decompress();
  743.         else            printcodes();
  744.         if (verbose)        dump_tab();
  745. #endif /* DEBUG */
  746.         if(zcat_flg == 0) {
  747.         copystat(*fileptr, ofname);    /* Copy stats */
  748.         if((exit_stat == 1) || (!quiet))
  749.             putc('\n', stderr);
  750.         }
  751.     }
  752.     } else {        /* Standard input */
  753.     if (do_decomp == 0) {
  754.         compress();
  755. #ifdef DEBUG
  756.         if(verbose)        dump_tab();
  757. #endif /* DEBUG */
  758.         if(!quiet)
  759.             putc('\n', stderr);
  760.     } else {
  761.         /* Check the magic number */
  762.         if (nomagic == 0) {
  763.         if ((getchar()!=(magic_header[0] & 0xFF))
  764.          || (getchar()!=(magic_header[1] & 0xFF))) {
  765.             fprintf(stderr, "stdin: not in compressed format\n");
  766.             exit(1);
  767.         }
  768.         maxbits = getchar();    /* set -b from file */
  769.         block_compress = maxbits & BLOCK_MASK;
  770.         maxbits &= BIT_MASK;
  771.         maxmaxcode = (code_int) 1 << maxbits;
  772.         fsize = 100000;        /* assume stdin large for USERMEM */
  773.         if(maxbits > BITS) {
  774.             fprintf(stderr,
  775.             "stdin: compressed with %d bits, can only handle %d bits\n",
  776.             maxbits, BITS);
  777.             exit(1);
  778.         }
  779.         }
  780. #ifndef DEBUG
  781.         decompress();
  782. #else
  783.         if (debug == 0)    decompress();
  784.         else        printcodes();
  785.         if (verbose)    dump_tab();
  786. #endif /* DEBUG */
  787.     }
  788.     }
  789.     exit(exit_stat);
  790. }
  791.  
  792. static int offset;
  793. long int in_count = 1;            /* length of input */
  794. long int bytes_out;            /* length of compressed output */
  795. long int out_count = 0;            /* # of codes output (for debugging) */
  796.  
  797. /*
  798.  * compress stdin to stdout
  799.  *
  800.  * Algorithm:  use open addressing double hashing (no chaining) on the 
  801.  * prefix code / next character combination.  We do a variant of Knuth's
  802.  * algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
  803.  * secondary probe.  Here, the modular division first probe is gives way
  804.  * to a faster exclusive-or manipulation.  Also do block compression with
  805.  * an adaptive reset, whereby the code table is cleared when the compression
  806.  * ratio decreases, but after the table fills.    The variable-length output
  807.  * codes are re-sized at this point, and a special CLEAR code is generated
  808.  * for the decompressor.  Late addition:  construct the table according to
  809.  * file size for noticeable speed improvement on small files.  Please direct
  810.  * questions about this implementation to ames!jaw.
  811.  */
  812.  
  813. compress() {
  814.     register long fcode;
  815.     register code_int i = 0;
  816.     register int c;
  817.     register code_int ent;
  818.     register code_int disp;
  819.     register code_int hsize_reg;
  820.     register int hshift;
  821.  
  822. #ifndef COMPATIBLE
  823.     if (nomagic == 0) {
  824.     putchar(magic_header[0]); putchar(magic_header[1]);
  825.     putchar((char)(maxbits | block_compress));
  826.     if(ferror(stdout))
  827.         writeerr();
  828.     }
  829. #endif /* COMPATIBLE */
  830.  
  831.     offset = 0;
  832.     bytes_out = 3;        /* includes 3-byte header mojo */
  833.     out_count = 0;
  834.     clear_flg = 0;
  835.     ratio = 0;
  836.     in_count = 1;
  837.     checkpoint = CHECK_GAP;
  838.     maxcode = MAXCODE(n_bits = INIT_BITS);
  839.     free_ent = ((block_compress) ? FIRST : 256 );
  840.  
  841.     ent = getchar ();
  842.  
  843.     hshift = 0;
  844.     for ( fcode = (long) hsize;     fcode < 65536L; fcode *= 2L )
  845.     hshift++;
  846.     hshift = 8 - hshift;        /* set hash code range bound */
  847.  
  848.     hsize_reg = hsize;
  849.     cl_hash( (count_int) hsize_reg);        /* clear hash table */
  850.  
  851. #ifdef SIGNED_COMPARE_SLOW
  852.     while ( (c = getchar()) != (unsigned) EOF ) {
  853. #else
  854.     while ( (c = getchar()) != EOF ) {
  855. #endif
  856.  
  857. #ifdef MSDOS
  858.     if (c == '\n') in_count += image; else /* include CR if text mode */
  859. #endif
  860.  
  861.     in_count++;
  862.  
  863.     fcode = (long) (((long) c << maxbits) + ent);
  864.     i = (((code_int)c << hshift) ^ ent);    /* xor hashing */
  865.  
  866.     if ( htabof (i) == fcode ) {
  867.         ent = codetabof (i);
  868.         continue;
  869.     } else if ( (long)htabof (i) < 0 )    /* empty slot */
  870.         goto nomatch;
  871.     disp = hsize_reg - i;        /* secondary hash (after G. Knott) */
  872.     if ( i == 0 )
  873.         disp = 1;
  874. probe:
  875.     if ( (i -= disp) < 0 )
  876.         i += hsize_reg;
  877.  
  878.     if ( htabof (i) == fcode ) {
  879.         ent = codetabof (i);
  880.         continue;
  881.     }
  882.     if ( (long)htabof (i) > 0 ) 
  883.         goto probe;
  884. nomatch:
  885.     output ( (code_int) ent );
  886.     out_count++;
  887.     ent = c;
  888. #ifdef SIGNED_COMPARE_SLOW
  889.     if ( (unsigned) free_ent < (unsigned) maxmaxcode) {
  890. #else
  891.     if ( free_ent < maxmaxcode ) {
  892. #endif
  893.         codetabof (i) = free_ent++; /* code -> hashtable */
  894.         htabof (i) = fcode;
  895.     }
  896.     else if ( (count_int)in_count >= checkpoint && block_compress )
  897.         cl_block ();
  898.     }
  899.     /*
  900.      * Put out the final code.
  901.      */
  902.     output( (code_int)ent );
  903.     out_count++;
  904.     output( (code_int)-1 );
  905.  
  906.     /*
  907.      * Print out stats on stderr
  908.      */
  909.     if(zcat_flg == 0 && !quiet) {
  910. #ifdef DEBUG
  911.     fprintf( stderr,
  912.         "%ld chars in, %ld codes (%ld bytes) out, compression factor: ",
  913.         in_count, out_count, bytes_out );
  914.     prratio( stderr, in_count, bytes_out );
  915.     fprintf( stderr, "\n");
  916.     fprintf( stderr, "\tCompression as in compact: " );
  917.     prratio( stderr, in_count-bytes_out, in_count );
  918.     fprintf( stderr, "\n");
  919.     fprintf( stderr, "\tLargest code (of last block) was %d (%d bits)\n",
  920.         free_ent - 1, n_bits );
  921. #else /* !DEBUG */
  922.     fprintf( stderr, "Compression: " );
  923.     prratio( stderr, in_count-bytes_out, in_count );
  924. #endif /* DEBUG */
  925.     }
  926.     if(bytes_out > in_count)    /* exit(2) if no savings */
  927.     exit_stat = 2;
  928.     return;
  929. }
  930.  
  931. /*****************************************************************
  932.  * TAG( output )
  933.  *
  934.  * Output the given code.
  935.  * Inputs:
  936.  *    code:    A n_bits-bit integer.  If == -1, then EOF.  This assumes
  937.  *        that n_bits =< (long)wordsize - 1.
  938.  * Outputs:
  939.  *    Outputs code to the file.
  940.  * Assumptions:
  941.  *    Chars are 8 bits long.
  942.  * Algorithm:
  943.  *    Maintain a BITS character long buffer (so that 8 codes will
  944.  * fit in it exactly).    Use the VAX insv instruction to insert each
  945.  * code in turn.  When the buffer fills up empty it and start over.
  946.  */
  947.  
  948. static char buf[BITS];
  949.  
  950. #ifndef vax
  951. char_type lmask[9] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80, 0x00};
  952. char_type rmask[9] = {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff};
  953. #endif /* vax */
  954.  
  955. output( code )
  956. code_int  code;
  957. {
  958. #ifdef DEBUG
  959.     static int col = 0;
  960. #endif /* DEBUG */
  961.  
  962.     /*
  963.      * On the VAX, it is important to have the register declarations
  964.      * in exactly the order given, or the asm will break.
  965.      */
  966.     register int r_off = offset, bits= n_bits;
  967.     register char * bp = buf;
  968.  
  969. #ifdef DEBUG
  970.     if ( verbose )
  971.         fprintf( stderr, "%5d%c", code,
  972.             (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
  973. #endif /* DEBUG */
  974.     if ( code >= 0 ) {
  975. #ifdef vax
  976.     /* VAX DEPENDENT!! Implementation on other machines is below.
  977.      *
  978.      * Translation: Insert BITS bits from the argument starting at
  979.      * offset bits from the beginning of buf.
  980.      */
  981.     0;    /* Work around for pcc -O bug with asm and if stmt */
  982.     asm( "insv    4(ap),r11,r10,(r9)" );
  983. #else /* not a vax */
  984. /* 
  985.  * byte/bit numbering on the VAX is simulated by the following code
  986.  */
  987.     /*
  988.      * Get to the first byte.
  989.      */
  990.     bp += (r_off >> 3);
  991.     r_off &= 7;
  992.     /*
  993.      * Since code is always >= 8 bits, only need to mask the first
  994.      * hunk on the left.
  995.      */
  996.     *bp = (*bp & rmask[r_off]) | (code << r_off) & lmask[r_off];
  997.     bp++;
  998.     bits -= (8 - r_off);
  999.     code >>= 8 - r_off;
  1000.     /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
  1001.     if ( bits >= 8 ) {
  1002.         *bp++ = code;
  1003.         code >>= 8;
  1004.         bits -= 8;
  1005.     }
  1006.     /* Last bits. */
  1007.     if(bits)
  1008.         *bp = code;
  1009. #endif /* vax */
  1010.     offset += n_bits;
  1011.     if ( offset == (n_bits << 3) ) {
  1012.         bp = buf;
  1013.         bits = n_bits;
  1014.         bytes_out += bits;
  1015.         do
  1016.         putchar(*bp++);
  1017.         while(--bits);
  1018.         offset = 0;
  1019.     }
  1020.  
  1021.     /*
  1022.      * If the next entry is going to be too big for the code size,
  1023.      * then increase it, if possible.
  1024.      */
  1025.     if ( free_ent > maxcode || (clear_flg > 0))
  1026.     {
  1027.         /*
  1028.          * Write the whole buffer, because the input side won't
  1029.          * discover the size increase until after it has read it.
  1030.          */
  1031.         if ( offset > 0 ) {
  1032.         if( fwrite( buf, 1, n_bits, stdout ) != n_bits)
  1033.             writeerr();
  1034.         bytes_out += n_bits;
  1035.         }
  1036.         offset = 0;
  1037.  
  1038.         if ( clear_flg ) {
  1039.         maxcode = MAXCODE (n_bits = INIT_BITS);
  1040.         clear_flg = 0;
  1041.         }
  1042.         else {
  1043.         n_bits++;
  1044.         if ( n_bits == maxbits )
  1045.             maxcode = maxmaxcode;
  1046.         else
  1047.             maxcode = MAXCODE(n_bits);
  1048.         }
  1049. #ifdef DEBUG
  1050.         if ( debug ) {
  1051.         fprintf( stderr, "\nChange to %d bits\n", n_bits );
  1052.         col = 0;
  1053.         }
  1054. #endif /* DEBUG */
  1055.     }
  1056.     } else {
  1057.     /*
  1058.      * At EOF, write the rest of the buffer.
  1059.      */
  1060.     if ( offset > 0 )
  1061.         fwrite( buf, 1, (offset + 7) / 8, stdout );
  1062.     bytes_out += (offset + 7) / 8;
  1063.     offset = 0;
  1064.     fflush( stdout );
  1065. #ifdef DEBUG
  1066.     if ( verbose )
  1067.         fprintf( stderr, "\n" );
  1068. #endif /* DEBUG */
  1069.     if( ferror( stdout ) )
  1070.         writeerr();
  1071.     }
  1072. }
  1073.  
  1074. /*
  1075.  * Decompress stdin to stdout.    This routine adapts to the codes in the
  1076.  * file building the "string" table on-the-fly; requiring no table to
  1077.  * be stored in the compressed file.  The tables used herein are shared
  1078.  * with those of the compress() routine.  See the definitions above.
  1079.  */
  1080.  
  1081. decompress() {
  1082.  
  1083. #ifdef BIG
  1084.     register char_type far *stackp;
  1085. #else
  1086.     register char_type *stackp;
  1087. #endif
  1088.  
  1089.     register int finchar;
  1090.     register code_int code, oldcode, incode;
  1091.  
  1092.     /*
  1093.      * As above, initialize the first 256 entries in the table.
  1094.      */
  1095.     maxcode = MAXCODE(n_bits = INIT_BITS);
  1096.     for ( code = 255; code >= 0; code-- ) {
  1097.     tab_prefixof(code) = 0;
  1098.     tab_suffixof(code) = (char_type)code;
  1099.     }
  1100.     free_ent = ((block_compress) ? FIRST : 256 );
  1101.     finchar = oldcode = getcode();
  1102.     if(oldcode == -1)    /* EOF already? */
  1103.     {
  1104. fprintf( stderr, "\ncompress: early EOF detected\n" );
  1105.     return;            /* Get out of here */
  1106.     }
  1107.     putchar( (char)finchar );        /* first code must be 8 bits = char */
  1108.     if(ferror(stdout))        /* Crash if can't write */
  1109.     writeerr();
  1110.     stackp = de_stack;
  1111.  
  1112.     while ( (code = getcode()) > -1 ) {
  1113.  
  1114.     if ( (code == CLEAR) && block_compress ) {
  1115.         for ( code = 255; code >= 0; code-- )
  1116.         tab_prefixof(code) = 0;
  1117.         clear_flg = 1;
  1118.         free_ent = FIRST - 1;
  1119.         if ( (code = getcode ()) == -1 )    /* O, untimely death! */
  1120.         {
  1121.         fprintf( stderr, "O, untimely death!\n" );
  1122.         break;
  1123.         }
  1124.     }
  1125.     incode = code;
  1126.     /*
  1127.      * Special case for KwKwK string.
  1128.      */
  1129.     if ( code >= free_ent ) {
  1130.         *stackp++ = finchar;
  1131.         code = oldcode;
  1132.     }
  1133.  
  1134.     /*
  1135.      * Generate output characters in reverse order
  1136.      */
  1137.     while ( code >= 256 ) {
  1138.         *stackp++ = tab_suffixof(code);
  1139.         code = tab_prefixof(code);
  1140.     }
  1141.     *stackp++ = finchar = tab_suffixof(code);
  1142.  
  1143.     /*
  1144.      * And put them out in forward order
  1145.      */
  1146.     do
  1147.     {
  1148.         putchar ( *--stackp );
  1149.     } while ( stackp > de_stack );
  1150.     /*
  1151.      * Generate the new entry.
  1152.      */
  1153.     if ( (code=free_ent) < maxmaxcode ) {
  1154.         tab_prefixof(code) = (unsigned short)oldcode;
  1155.         tab_suffixof(code) = finchar;
  1156.         free_ent = code+1;
  1157.     } 
  1158.     /*
  1159.      * Remember previous code.
  1160.      */
  1161.     oldcode = incode;
  1162.     }
  1163.     fflush( stdout );
  1164.     if(ferror(stdout))
  1165.     writeerr();
  1166. }
  1167.  
  1168. /*****************************************************************
  1169.  * TAG( getcode )
  1170.  *
  1171.  * Read one code from the standard input.  If EOF, return -1.
  1172.  * Inputs:
  1173.  *    stdin
  1174.  * Outputs:
  1175.  *    code or -1 is returned.
  1176.  */
  1177.  
  1178. code_int
  1179. getcode() {
  1180.     /*
  1181.      * On the VAX, it is important to have the register declarations
  1182.      * in exactly the order given, or the asm will break.
  1183.      */
  1184.     register code_int code;
  1185.     static unsigned long offset = 0, size = 0;
  1186.     static char_type buf[BITS];
  1187.     register unsigned long r_off, bits;
  1188.     register char_type *bp = buf;
  1189. static long rin = 0;
  1190. static long rinrep = 0;
  1191.  
  1192.     if ( clear_flg > 0 || offset >= size || free_ent > maxcode ) {
  1193.     /*
  1194.      * If the next entry will be too big for the current code
  1195.      * size, then we must increase the size.  This implies reading
  1196.      * a new buffer full, too.
  1197.      */
  1198.     if ( free_ent > maxcode ) {
  1199.         n_bits++;
  1200.         if ( n_bits == maxbits )
  1201.         maxcode = maxmaxcode;    /* won't get any bigger now */
  1202.         else
  1203.         maxcode = MAXCODE(n_bits);
  1204.     }
  1205.     if ( clear_flg > 0) {
  1206.         maxcode = MAXCODE (n_bits = INIT_BITS);
  1207.         clear_flg = 0;
  1208.     }
  1209.     size = fread( buf, 1, n_bits, stdin );
  1210.     if ( size <= 0 )
  1211.     {
  1212.         return -1;            /* end of file */
  1213.     }
  1214. rin += size;
  1215. if ( rin - rinrep >= 5000 )
  1216. {
  1217.     fprintf( stderr, "read %ld\r", rin );
  1218.     rinrep = rin;
  1219. }
  1220.     offset = 0;
  1221.     /* Round size down to integral number of codes */
  1222.     size = (size << 3) - (n_bits - 1);
  1223.     }
  1224.     r_off = offset;
  1225.     bits = n_bits;
  1226. #ifdef vax
  1227.     asm( "extzv      r10,r9,(r8),r11" );
  1228. #else /* not a vax */
  1229.     /*
  1230.      * Get to the first byte.
  1231.      */
  1232.     bp += (r_off >> 3);
  1233.     r_off &= 7;
  1234.     /* Get first part (low order bits) */
  1235.     code = ((*bp++ >> r_off) & rmask[8 - r_off]) & 0xff;
  1236.     bits -= (8 - r_off);
  1237.     r_off = 8 - r_off;        /* now, offset into code word */
  1238.     /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
  1239.     if ( bits >= 8 ) {
  1240.         code |= ((unsigned long)(*bp++ & 0xff) << r_off);
  1241.         r_off += 8;
  1242.         bits -= 8;
  1243.     }
  1244.     /* high order bits. */
  1245.     code |= (*bp & rmask[bits]) << r_off;
  1246. #endif /* vax */
  1247.     offset += n_bits;
  1248.     return code;
  1249. }
  1250.  
  1251. char *
  1252. rindex(s, c)        /* For those who don't have it in libc.a */
  1253. register char *s, c;
  1254. {
  1255.     char *p;
  1256.     for (p = NULL; *s; s++)
  1257.         if (*s == c)
  1258.         p = s;
  1259.     return(p);
  1260. }
  1261.  
  1262. #ifdef DEBUG
  1263. printcodes()
  1264. {
  1265.     /*
  1266.      * Just print out codes from input file.  For debugging.
  1267.      */
  1268.     code_int code;
  1269.     int col = 0, bits;
  1270.  
  1271.     bits = n_bits = INIT_BITS;
  1272.     maxcode = MAXCODE(n_bits);
  1273.     free_ent = ((block_compress) ? FIRST : 256 );
  1274.     while ( ( code = getcode() ) >= 0 ) {
  1275.     if ( (code == CLEAR) && block_compress ) {
  1276.         free_ent = FIRST - 1;
  1277.         clear_flg = 1;
  1278.     }
  1279.     else if ( free_ent < maxmaxcode )
  1280.         free_ent++;
  1281.     if ( bits != n_bits ) {
  1282.         fprintf(stderr, "\nChange to %d bits\n", n_bits );
  1283.         bits = n_bits;
  1284.         col = 0;
  1285.     }
  1286.     fprintf(stderr, "%5d%c", code, (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
  1287.     }
  1288.     putc( '\n', stderr );
  1289.     exit( 0 );
  1290. }
  1291.  
  1292. code_int sorttab[1<<BITS];    /* sorted pointers into htab */
  1293.  
  1294. dump_tab()    /* dump string table */
  1295. {
  1296.     register int i, first;
  1297.     register ent;
  1298. #define STACK_SIZE    15000
  1299.     int stack_top = STACK_SIZE;
  1300.     register c;
  1301.  
  1302.     if(do_decomp == 0) {    /* compressing */
  1303.     register int flag = 1;
  1304.  
  1305.     for(i=0; i<hsize; i++) {    /* build sort pointers */
  1306.         if((long)htabof(i) >= 0) {
  1307.             sorttab[codetabof(i)] = i;
  1308.         }
  1309.     }
  1310.     first = block_compress ? FIRST : 256;
  1311.     for(i = first; i < free_ent; i++) {
  1312.         fprintf(stderr, "%5d: \"", i);
  1313.         de_stack[--stack_top] = '\n';
  1314.         de_stack[--stack_top] = '"';
  1315.         stack_top = in_stack((htabof(sorttab[i])>>maxbits)&0xff, 
  1316.                      stack_top);
  1317.         for(ent=htabof(sorttab[i]) & ((1<<maxbits)-1);
  1318.             ent > 256;
  1319.             ent=htabof(sorttab[ent]) & ((1<<maxbits)-1)) {
  1320.             stack_top = in_stack(htabof(sorttab[ent]) >> maxbits,
  1321.                         stack_top);
  1322.         }
  1323.         stack_top = in_stack(ent, stack_top);
  1324.         fwrite( &de_stack[stack_top], 1, STACK_SIZE-stack_top, stderr);
  1325.         stack_top = STACK_SIZE;
  1326.     }
  1327.    } else if(!debug) {    /* decompressing */
  1328.  
  1329.        for ( i = 0; i < free_ent; i++ ) {
  1330.        ent = i;
  1331.        c = tab_suffixof(ent);
  1332.        if ( isascii(c) && isprint(c) )
  1333.            fprintf( stderr, "%5d: %5d/'%c'    \"",
  1334.                ent, tab_prefixof(ent), c );
  1335.        else
  1336.            fprintf( stderr, "%5d: %5d/\\%03o \"",
  1337.                ent, tab_prefixof(ent), c );
  1338.        de_stack[--stack_top] = '\n';
  1339.        de_stack[--stack_top] = '"';
  1340.        for ( ; ent != NULL;
  1341.            ent = (ent >= FIRST ? tab_prefixof(ent) : NULL) ) {
  1342.            stack_top = in_stack(tab_suffixof(ent), stack_top);
  1343.        }
  1344.        fwrite( &de_stack[stack_top], 1, STACK_SIZE - stack_top, stderr );
  1345.        stack_top = STACK_SIZE;
  1346.        }
  1347.     }
  1348. }
  1349.  
  1350. int
  1351. in_stack(c, stack_top)
  1352.     register c, stack_top;
  1353. {
  1354.     if ( (isascii(c) && isprint(c) && c != '\\') || c == ' ' ) {
  1355.         de_stack[--stack_top] = c;
  1356.     } else {
  1357.         switch( c ) {
  1358.         case '\n': de_stack[--stack_top] = 'n'; break;
  1359.         case '\t': de_stack[--stack_top] = 't'; break;
  1360.         case '\b': de_stack[--stack_top] = 'b'; break;
  1361.         case '\f': de_stack[--stack_top] = 'f'; break;
  1362.         case '\r': de_stack[--stack_top] = 'r'; break;
  1363.         case '\\': de_stack[--stack_top] = '\\'; break;
  1364.         default:
  1365.         de_stack[--stack_top] = '0' + c % 8;
  1366.         de_stack[--stack_top] = '0' + (c / 8) % 8;
  1367.         de_stack[--stack_top] = '0' + c / 64;
  1368.         break;
  1369.         }
  1370.         de_stack[--stack_top] = '\\';
  1371.     }
  1372.     return stack_top;
  1373. }
  1374. #endif /* DEBUG */
  1375.  
  1376. writeerr()
  1377. {
  1378.     perror ( ofname );
  1379.     unlink ( ofname );
  1380.     exit ( 1 );
  1381. }
  1382.  
  1383. copystat(ifname, ofname)
  1384. char *ifname, *ofname;
  1385. {}
  1386.  
  1387. #ifndef MSDOS
  1388. /*
  1389.  * This routine returns 1 if we are running in the foreground and stderr
  1390.  * is a tty.
  1391.  */
  1392. foreground()
  1393. {
  1394.     if(bgnd_flag != SIG_DFL) { /* background? */
  1395.         return(0);
  1396.     } else {            /* foreground */
  1397.         if(isatty(2)) {        /* and stderr is a tty */
  1398.             return(1);
  1399.         } else {
  1400.             return(0);
  1401.         }
  1402.     }
  1403. }
  1404. #endif
  1405.  
  1406. onintr ( )
  1407. {
  1408.     if (!precious)
  1409.     unlink ( ofname );
  1410.     exit ( 1 );
  1411. }
  1412.  
  1413. #ifndef MSDOS
  1414. oops ( )    /* wild pointer -- assume bad input */
  1415. {
  1416.     if ( do_decomp == 1 ) 
  1417.     fprintf ( stderr, "uncompress: corrupt input\n" );
  1418.     unlink ( ofname );
  1419.     exit ( 1 );
  1420. }
  1421. #endif /* MSDOS */
  1422.  
  1423. cl_block ()        /* table clear for block compress */
  1424. {
  1425.     register long int rat;
  1426.  
  1427.     checkpoint = in_count + CHECK_GAP;
  1428. #ifdef DEBUG
  1429.     if ( debug ) {
  1430.         fprintf ( stderr, "count: %ld, ratio: ", in_count );
  1431.         prratio ( stderr, in_count, bytes_out );
  1432.         fprintf ( stderr, "\n");
  1433.     }
  1434. #endif /* DEBUG */
  1435.  
  1436.     if(in_count > 0x007fffff) { /* shift will overflow */
  1437.     rat = bytes_out >> 8;
  1438.     if(rat == 0) {        /* Don't divide by zero */
  1439.         rat = 0x7fffffff;
  1440.     } else {
  1441.         rat = in_count / rat;
  1442.     }
  1443.     } else {
  1444.     rat = (in_count << 8) / bytes_out;    /* 8 fractional bits */
  1445.     }
  1446.     if ( rat > ratio ) {
  1447.     ratio = rat;
  1448.     } else {
  1449.     ratio = 0;
  1450. #ifdef DEBUG
  1451.     if(verbose)
  1452.         dump_tab();    /* dump string table */
  1453. #endif
  1454.     cl_hash ( (count_int) hsize );
  1455.     free_ent = FIRST;
  1456.     clear_flg = 1;
  1457.     output ( (code_int) CLEAR );
  1458. #ifdef DEBUG
  1459.     if(debug)
  1460.         fprintf ( stderr, "clear\n" );
  1461. #endif /* DEBUG */
  1462.     }
  1463. }
  1464.  
  1465. cl_hash(hsize)        /* reset code table */
  1466.     register count_int hsize;
  1467. {
  1468.  
  1469. #ifdef XENIX_16
  1470.     register j;
  1471.     register long k = hsize;
  1472.      
  1473. # ifdef MSDOS
  1474.     register count_int far *htab_p;
  1475. # else
  1476.     register count_int *htab_p;
  1477. # endif /* MSDOS */
  1478.  
  1479. #else    /* Normal machine */
  1480.     register count_int *htab_p = htab+hsize;
  1481. #endif    /* XENIX_16 */
  1482.  
  1483.     register long i;
  1484.     register long m1 = -1;
  1485.  
  1486. #ifdef XENIX_16
  1487.     for(j=0; j<=8 && k>=0; j++,k-=8192) {
  1488.     i = 8192;
  1489.     if(k < 8192) {
  1490.         i = k;
  1491.     }
  1492.     htab_p = &(htab[j][i]);
  1493.     i -= 16;
  1494.     if(i > 0) {
  1495. #else
  1496.     i = hsize - 16;
  1497. #endif
  1498.     do {                /* might use Sys V memset(3) here */
  1499.         *(htab_p-16) = m1;
  1500.         *(htab_p-15) = m1;
  1501.         *(htab_p-14) = m1;
  1502.         *(htab_p-13) = m1;
  1503.         *(htab_p-12) = m1;
  1504.         *(htab_p-11) = m1;
  1505.         *(htab_p-10) = m1;
  1506.         *(htab_p-9) = m1;
  1507.         *(htab_p-8) = m1;
  1508.         *(htab_p-7) = m1;
  1509.         *(htab_p-6) = m1;
  1510.         *(htab_p-5) = m1;
  1511.         *(htab_p-4) = m1;
  1512.         *(htab_p-3) = m1;
  1513.         *(htab_p-2) = m1;
  1514.         *(htab_p-1) = m1;
  1515.         htab_p -= 16;
  1516.     } while ((i -= 16) >= 0);
  1517. #ifdef XENIX_16
  1518.     }
  1519.     }
  1520. #endif
  1521.     for ( i += 16; i > 0; i-- )
  1522.         *--htab_p = m1;
  1523. }
  1524.  
  1525. prratio(stream, num, den)
  1526. FILE *stream;
  1527. long int num, den;
  1528. {
  1529.  
  1530. #ifdef DEBUG
  1531.     register long q;        /* permits |result| > 655.36% */
  1532. #else
  1533.     register int q;            /* Doesn't need to be long */
  1534. #endif
  1535.  
  1536.     if(num > 214748L) {        /* 2147483647/10000 */
  1537.         q = num / (den / 10000L);
  1538.     } else {
  1539.         q = 10000L * num / den;        /* Long calculations, though */
  1540.     }
  1541.     if (q < 0) {
  1542.         putc('-', stream);
  1543.         q = -q;
  1544.     }
  1545.     fprintf(stream, "%d.%02d%%", (int)(q / 100), (int)(q % 100));
  1546. }
  1547.  
  1548. version()
  1549. {
  1550.     fprintf(stderr, "%s\n", rcs_ident);
  1551.     fprintf(stderr, "Options: ");
  1552. #ifdef vax
  1553.     fprintf(stderr, "vax, ");
  1554. #endif
  1555. #ifdef NO_UCHAR
  1556.     fprintf(stderr, "NO_UCHAR, ");
  1557. #endif
  1558. #ifdef SIGNED_COMPARE_SLOW
  1559.     fprintf(stderr, "SIGNED_COMPARE_SLOW, ");
  1560. #endif
  1561. #ifdef MSDOS
  1562.     fprintf(stderr, "MSDOS, ");
  1563. #endif
  1564. #ifdef XENIX_16
  1565.     fprintf(stderr, "XENIX_16, ");
  1566. #endif
  1567. #ifdef COMPATIBLE
  1568.     fprintf(stderr, "COMPATIBLE, ");
  1569. #endif
  1570. #ifdef DEBUG
  1571.     fprintf(stderr, "DEBUG, ");
  1572. #endif
  1573. #ifdef BSD4_2
  1574.     fprintf(stderr, "BSD4_2, ");
  1575. #endif
  1576.     fprintf(stderr, "BITS = %d\n", BITS);
  1577. }
  1578.